home *** CD-ROM | disk | FTP | other *** search
- diff -r -c3 linux-0.99.14.orig/config.in linux-0.99.14/config.in
- *** linux-0.99.14.orig/config.in Mon Nov 29 08:09:00 1993
- --- linux-0.99.14/config.in Tue Nov 30 03:29:14 1993
- ***************
- *** 98,103 ****
- --- 98,104 ----
- bool 'NFS filesystem support' CONFIG_NFS_FS y
- bool 'ISO9660 cdrom filesystem support' CONFIG_ISO9660_FS n
- bool 'OS/2 HPFS filesystem support (read only)' CONFIG_HPFS_FS n
- + bool 'System V and Coherent filesystem support' CONFIG_SYSV_FS n
- *
- * character devices
- *
- diff -r -c3 linux-0.99.14.orig/fs/Makefile linux-0.99.14/fs/Makefile
- *** linux-0.99.14.orig/fs/Makefile Fri Nov 26 12:53:37 1993
- --- linux-0.99.14/fs/Makefile Tue Nov 30 03:28:26 1993
- ***************
- *** 7,13 ****
- #
- # Note 2! The CFLAGS definitions are now in the main makefile...
-
- ! SUBDIRS = minix ext ext2 msdos proc isofs nfs xiafs hpfs
-
- ifdef CONFIG_MINIX_FS
- FS_SUBDIRS := $(FS_SUBDIRS) minix
- --- 7,13 ----
- #
- # Note 2! The CFLAGS definitions are now in the main makefile...
-
- ! SUBDIRS = minix ext ext2 msdos proc isofs nfs xiafs hpfs sysv
-
- ifdef CONFIG_MINIX_FS
- FS_SUBDIRS := $(FS_SUBDIRS) minix
- ***************
- *** 32,37 ****
- --- 32,40 ----
- endif
- ifdef CONFIG_XIA_FS
- FS_SUBDIRS := $(FS_SUBDIRS) xiafs
- + endif
- + ifdef CONFIG_SYSV_FS
- + FS_SUBDIRS := $(FS_SUBDIRS) sysv
- endif
- ifdef CONFIG_HPFS_FS
- FS_SUBDIRS := $(FS_SUBDIRS) hpfs
- diff -r -c3 linux-0.99.14.orig/fs/filesystems.c linux-0.99.14/fs/filesystems.c
- *** linux-0.99.14.orig/fs/filesystems.c Sun Oct 31 15:26:34 1993
- --- linux-0.99.14/fs/filesystems.c Tue Nov 30 03:27:36 1993
- ***************
- *** 35,40 ****
- --- 35,43 ----
- #ifdef CONFIG_HPFS_FS
- #include <linux/hpfs_fs.h>
- #endif
- + #ifdef CONFIG_SYSV_FS
- + #include <linux/sysv_fs.h>
- + #endif
-
- struct file_system_type file_systems[] = {
- #ifdef CONFIG_MINIX_FS
- ***************
- *** 60,65 ****
- --- 63,73 ----
- #endif
- #ifdef CONFIG_ISO9660_FS
- {isofs_read_super, "iso9660", 1},
- + #endif
- + #ifdef CONFIG_SYSV_FS
- + {sysv_read_super, "xenix", 1},
- + {sysv_read_super, "sysv", 1},
- + {sysv_read_super, "coherent", 1},
- #endif
- #ifdef CONFIG_HPFS_FS
- {hpfs_read_super, "hpfs", 1},
- diff -r -c3 linux-0.99.14.orig/include/linux/fs.h linux-0.99.14/include/linux/fs.h
- *** linux-0.99.14.orig/include/linux/fs.h Mon Nov 22 18:47:56 1993
- --- linux-0.99.14/include/linux/fs.h Tue Nov 30 03:27:37 1993
- ***************
- *** 153,158 ****
- --- 153,159 ----
- #include <linux/iso_fs_i.h>
- #include <linux/nfs_fs_i.h>
- #include <linux/xia_fs_i.h>
- + #include <linux/sysv_fs_i.h>
-
- struct inode {
- dev_t i_dev;
- ***************
- *** 194,199 ****
- --- 195,201 ----
- struct iso_inode_info isofs_i;
- struct nfs_inode_info nfs_i;
- struct xiafs_inode_info xiafs_i;
- + struct sysv_inode_info sysv_i;
- } u;
- };
-
- ***************
- *** 228,233 ****
- --- 230,236 ----
- #include <linux/iso_fs_sb.h>
- #include <linux/nfs_fs_sb.h>
- #include <linux/xia_fs_sb.h>
- + #include <linux/sysv_fs_sb.h>
-
- struct super_block {
- dev_t s_dev;
- ***************
- *** 252,257 ****
- --- 255,261 ----
- struct isofs_sb_info isofs_sb;
- struct nfs_sb_info nfs_sb;
- struct xiafs_sb_info xiafs_sb;
- + struct sysv_sb_info sysv_sb;
- } u;
- };
-
-